CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 搜索资源 - Finite Automata

搜索资源列表

  1. A finite automata learning system using GP.rar

    0下载:
  2. 遗传算法的文章
  3. 所属分类:数值算法/人工智能

    • 发布日期:
    • 文件大小:75211
    • 提供者:
  1. 有限自动机的确定化

    0下载:
  2. 此程序可以把编译原理中的不确定的有限自动机确定化,是编译中课程设计的内容-this program can build on the principle of uncertainty to determine finite automata, which is to compile the contents of the curriculum design
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:7584835
    • 提供者:火石
  1. DFAv1

    0下载:
  2. 关于有穷自动机和正则表达式相互转化的程序,并完成有穷自动机的确定化和最小化。-on Finite Automata and Regular expressions are transformed into each other procedures, and complete the DFA and the determination of the smallest.
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:50670
    • 提供者:高晖
  1. 有限自动(编译原理)源代码机

    0下载:
  2. 有限自动机 是编译原理课程设计源代码 可以用来借鉴与参考,可以运行。-Finite Automata Theory courses is to compile the source code design can be used to make a reference, can run.
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:1009
    • 提供者:刘飘
  1. FAv1

    0下载:
  2. 使用C#编写,实现输入正则表达式,输出确定有限自动机,使用图形界面显示。-prepared to use C#, are realizing the importation of expression, to determine output finite automata, the use of a graphical interface shows.
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:178391
    • 提供者:郑冰
  1. snlying6

    0下载:
  2. 1、 学会针对DFA转换图实现相应的高级语言源程序。 2、 深刻领会状态转换图的含义,逐步理解有限自动机。 3、 掌握手工生成词法分析器的方法,了解词法分析器的内部工作原理 -1, the Institute against DFA conversion map corresponding high-level language source. 2, deeply understand the state transition map meaning, and graduall
  3. 所属分类:编译器/词法分析

    • 发布日期:2015-06-08
    • 文件大小:13305
    • 提供者:王志
  1. 6611333

    0下载:
  2. 有穷自动机的转换大家可以参考下谢谢了下了袄-Finite Automata we can change the reference Thank you, the next under a coat
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:13770
    • 提供者:sunliang
  1. youxianzidongjihuajian

    0下载:
  2. 有限自动机的确定化及化简 1、更正了 DFA_simplify2 中的错误 2、增加新旧状态对照表 ds_temp --NFA转DFA -- 输入字符 -- 要求 id 必须从 1 开始连续递增-Finite Automata and the identification of a simplification, correction of the errors DFA_simplify2 2, increase the old and new stat
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:2844
    • 提供者:黄启龙
  1. byiyuanli

    0下载:
  2. 本源码可以用来对确定化的有限自动机进行化简-the source can be used to determine the finite automata for Simplification
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:2179
    • 提供者:123
  1. A finite automata learning system using GP

    0下载:
  2. 遗传算法的文章- Heredity algorithm article
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-11-20
    • 文件大小:75482
    • 提供者:顾凡一
  1. Finite_Automata

    0下载:
  2. 介绍有限自动机原理的PPT,制作精良,推荐阅读-a PPT about Finite Automata
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-02
    • 文件大小:51819
    • 提供者:fengchun
  1. DFA

    0下载:
  2. 简单DFA有穷自动机,可以根据输入的状态转换表,进行状态转换,对输入的字符串判断,该自动机是否可以接受。并有具体报告说明。-Simple DFA finite automata may be based on the input state transition table for state transitions, the input string to determine that the automatic machine is acceptable. And have specific
  3. 所属分类:Compiler program

    • 发布日期:2017-03-29
    • 文件大小:30577
    • 提供者:王乾坤
  1. wybyyl

    0下载:
  2. 编译原理之词法识别 利用有限自动机识别词法 初始化保留字表和标示符表,识别非法字符-Compiler theory of lexical identification using finite automata recognize lexical reserved words table and initialize the table identifier to identify illegal characters
  3. 所属分类:Compiler program

    • 发布日期:2017-04-03
    • 文件大小:3028
    • 提供者:miss wang
  1. LexicalAnalyzer

    1下载:
  2. 手工构造一个能够识别C语言的所有典型单词,如:标识符、数字、运算符,和if、while等保留字的确定有限自动机,并写出对应该自动机的程序;然后以一个简化的C语言程序为输入文件,通过所设计的基于上述自动机的词法分析程序获得输入文件中的各个单词及其内码对照表,并以文件形式保存结果(也就是TOKEN序列)。 将自己定义的各个正则表达式转化为NFA,然后将其综合为NFA ,再将NFA 转化为DFA,再将DFA转化为最少状态的DFA ,最后由DFA 转化为词法分析程序。-Manually constr
  3. 所属分类:Compiler program

    • 发布日期:2015-10-10
    • 文件大小:337795
    • 提供者:罗丹
  1. Finite-automata

    0下载:
  2. 基于有限自动机的词性标注方法,利用自动机进行状态转化,速度很快-Part of speech tagging method based on finite automata, automata for state transformation, very fast.
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-07
    • 文件大小:400438
    • 提供者:周光有
  1. Compilation-of-finite-automata

    1下载:
  2. 编译原理实验程序集,无符号数的自动机实现,单词的识别,读取无符号数,无符号数的有穷自动机-Compiler principle experiment assembly, the automata of the symbol number, word recognition, reading unsigned unsigned finite automata
  3. 所属分类:Compiler program

    • 发布日期:
    • 文件大小:61157
    • 提供者:若若
  1. uncertain-finite-automata-determine

    0下载:
  2. 不确定有限状态自动机的确定化,不确定有限状态自动机的确定化-The uncertain finite state automata determine
  3. 所属分类:Compiler program

    • 发布日期:2017-11-19
    • 文件大小:1547
    • 提供者:
  1. automata

    0下载:
  2. 自动机(用于识别输入字符串是否合乎规则,否则报错)-finite automata
  3. 所属分类:Other systems

    • 发布日期:2017-04-29
    • 文件大小:128383
    • 提供者:暖茶zy
  1. automata

    0下载:
  2. 有限自动机的确定华,NFA到DFA的转变,很好的源码(The determination of finite automata China, NFA to DFA transformation, a good source)
  3. 所属分类:Windows编程

    • 发布日期:2017-12-23
    • 文件大小:26624
    • 提供者:carteyian
  1. Mazharul String Matching By Finite Automata

    0下载:
  2. Mazharul String Matching By Finite Automata
  3. 所属分类:其他

    • 发布日期:2017-12-31
    • 文件大小:1027072
    • 提供者:Mazhar
« 12 3 4 5 6 »
搜珍网 www.dssz.com